Print full_name after precompiling extension#60456
Merged
IanButterworth merged 3 commits intoJuliaLang:masterfrom Dec 23, 2025
Merged
Print full_name after precompiling extension#60456IanButterworth merged 3 commits intoJuliaLang:masterfrom
full_name after precompiling extension#60456IanButterworth merged 3 commits intoJuliaLang:masterfrom
Conversation
Member
|
This looks correct and all the places you highlighted also. If you can add them I'll approve. Thanks! |
Contributor
Author
|
Great, I'll add them in a minute. Thanks for the quick reply! |
Contributor
Author
|
I added the first two. For the third one within |
Member
|
I think so, or pass in the result of |
Contributor
Author
I did that in 7c59dfb. |
Contributor
|
Thanks, this really bothered me a few times lately. It would be great if this could get backported to 1.12 and 1.13. |
IanButterworth
approved these changes
Dec 23, 2025
Member
|
Thanks! |
This was referenced Jan 9, 2026
Merged
DilumAluthge
added a commit
that referenced
this pull request
Jan 16, 2026
DilumAluthge
added a commit
that referenced
this pull request
Jan 19, 2026
71 tasks
56 tasks
45 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes #60047 to print the full package name
ParentPkg → ExtensionNameinstead of only theExtensionNameto match what the docs say:I have looked for more possible locations, which should print the
full_nameand found the possible candidates:julia/base/precompilation.jl
Line 936 in db0ee41
julia/base/precompilation.jl
Line 1329 in db0ee41
julia/base/precompilation.jl
Line 1380 in db0ee41
For these locations, I'm not entirely sure though whether they should print the full name.
Since this is my first PR to julia itself, I would be grateful for any guidance on anything I might have missed.
Fixes #60047